@charset "utf-8";
/* CSS Document */

html {
	scroll-behavior: smooth;
}

body {

	padding: 0;
	margin: 0;
    font-family: "Poppins", sans-serif;
    background:rgba(238, 63, 36);
    color:rgba(255,239,203);
	
}

h1, h2 {
	font-family: "Poppins", sans-serif;
}

.title-contact {
	margin-left: 70px;
	margin-top: 50px;
	font-size: 50px;
}

.container1 {
	position: sticky;
	z-index: 2;
	top: 0;
	overflow: hidden;
	width: 100%;
	background-color:rgba(238, 63, 36);
    margin: auto;
    border-radius: 2px;
    padding:15px;
	box-sizing: border-box;
	justify-content: flex-end;
	display: flex;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	
}

.navi {
	list-style: none;
	display: flex;
	flex-direction: row;
	gap: 50px;
	margin-right: 5px;
}

.navi a:link {
	color:antiquewhite;
	font-weight: 400;
	font-size: 1.0em;
	font-family: "Nunito Sans", sans-serif;
    text-decoration: underline;	
}

.navi a:hover {
	color: rgba(2,56,32);
}

.contact-section {
    background-color: rgba 249 161 27;
    padding: 20px 0;
}

.contact-grid {
    display: flex;
    gap: 0; /* Keeps the map and orange box touching */
	margin: 10%;
}

.map-placeholder {
    flex: 1;
    background-color: #E3F2FD;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box {
    flex: 0 0 40%;
    background-color:#F9A11B;
    color: rgba(255,239,203);
    padding: 34px;
}

.info-box h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    margin-top: 20px;
}

.info-box p {
    font-size: 1.3em;
    margin-bottom: 5px;
    font-weight: 400;
}

footer {
    padding: 60px 80px 30px;
    box-sizing: border-box;

}

footer-main {
	display: grid;
	grid-template-columns: 2 1 1 1;
	column-gap: 40px;
}

.logo{
	font-size: 100px;
	font-weight: bold;
	margin-bottom: 20px;
	width: 10%;
}

footer-brand p{
	max-width: 300px;
    margin-bottom: 25px;	
	font-size: 0.9rem;
}

.btn{
	display: inline-block;
	padding: 10px 24px;
	border: 1px #F5C36A;
	color: #f5c36a;
	text-decoration: none;
	font-size: 14px;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    min-height: 100px;
    padding: 1%;
    gap: 25px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col a {
	text-decoration: none;
	color: antiquewhite;
	font-size: 14px;
}

.footer-col a:hover {
	color: rgba(2,56,32);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	font-size: 12px;
	color: aliceblue;
	border-top: 1px solid rgba(2,56,32);
	padding-top: 20px;
}